# tap.offDeviceOrientationChange(function listener)
# 功能描述
移除设备屏幕转向切换事件的监听函数
# 参数
# function listener
onDeviceOrientationChange 传入的监听函数。不传此参数则移除所有监听函数。
# 示例代码
const listener = function (res) { console.log(res) }
tap.onDeviceOrientationChange(listener)
tap.offDeviceOrientationChange(listener) // 需传入与监听时同一个的函数对象